home *** CD-ROM | disk | FTP | other *** search
- i = 0;
- while(i < nX)
- {
- j = 0;
- while(j < nY)
- {
- tName = i add j;
- depth++;
- duplicateMovieClip("m_mc","m" add tName,16384 + depth);
- setProperty("m" add tName, _X, sX + i * cW);
- setProperty("m" add tName, _Y, sY + j * cW);
- j++;
- }
- i++;
- }
- depth++;
- duplicateMovieClip("mc_mc","mc",16384 + depth);
- cellSt = true;
-